home *** CD-ROM | disk | FTP | other *** search
/ Aminet 3 / Aminet 3 - July 1994.iso / Aminet / misc / math / graphdq.lha / GraphDQ / Install GraphDQ < prev    next >
Encoding:
Text File  |  1994-01-09  |  1.3 KB  |  58 lines

  1. (set
  2.     sendTo
  3.     (askdir
  4.         (prompt 'What directory?')
  5.         (default 'APPLICATIONS:GraphDQ')
  6.         (newpath)
  7.         (help "You should install GraphDQ as a subdirectory of some larger group of applications.  I put GraphDQ into my \"APPLICATIONS:\" directory.  However, you may not have an APPLICATIONS: directory, or want one, in which case you should tell Installer right here, right now where to put it.")
  8.     )
  9. )
  10.  
  11. (makedir
  12.     sendTo
  13.     (prompt 'Creating ' sendTo'...')
  14.     (confirm)
  15.     (infos)
  16.     (help 'I have to make some sort of destination directory!')
  17. )
  18.  
  19. (copyfiles
  20.     (prompt 'Copying relevant files to ' sendTo)
  21.     (source '')
  22.     (help 'Copying!')
  23.     (dest sendTo)
  24.     (all)
  25.     (files)
  26.     (infos)
  27. )
  28.  
  29. (set
  30.     assignTo
  31.     (askdir
  32.         (prompt 'In order to print graphs, I need to know where the AmigaDOS tool GraphicDump is located.')
  33.         (default 'SYS:Tools/')
  34.         (newpath)
  35.         (help "If you don't know where GraphicDump is located, check real quickly by looking in your directories.  Naturally, the first place to look is in \"SYS:Tools/\".  If you've deleted it, you'll need to recopy it from your original AmigaDOS diskettes.")
  36.     )
  37. )
  38.  
  39. (set
  40.     startCom
  41.     (cat
  42.         'assign TOOLS: '
  43.         assignTo
  44.         ' add'
  45.     )
  46. )
  47.  
  48. (startup
  49.     'GraphDQ'
  50.     (prompt 'Making necessary changes...')
  51.     (help 'Making necessary changes to S:User-Startup file')
  52.     (command startCom)
  53. )
  54.  
  55. (exit
  56.     'Installation of GraphDQ is done!'
  57. )
  58.